home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / swags_z.zip / SCREEN.SWG / 0002_CLRSCR2.PAS.pas < prev    next >
Pascal/Delphi Source File  |  1993-05-28  |  330b  |  13 lines

  1. {
  2. >How do you Write a clear screen Procedure in standard pascal for
  3. >the vax system?  I talking about a nice clear screen prgm that does't
  4. >scroll everything off the screen.  Something that works in a flash..
  5. }
  6.  
  7. Const
  8.   clear_screen = CHR(27) + CHR(91) + CHR(50) +CHR(74);
  9.  
  10. begin
  11.   Write(clear_screen);
  12.   readln;
  13. end.